home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MaxiMac 2000 December
/
MaxiMac 109.iso
/
Macworld on CD n°109
/
Applications (Mac OS X PB)
/
MacOSX ScreenSavers
/
Source Code
/
Pipes
/
buildlwo.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1997-08-04
|
398 b
|
25 lines
|
[
????/????
]
/*-
* buildlwo.h: Header file for Lightwave Object Display List Builder
* for OpenGL
*
* by Ed Mackey, 4/19/97
*
*/
#ifndef __BUILD_LWO_H__
#define __BUILD_LWO_H__
struct lwo {
int num_pnts;
GLfloat *pnts;
GLfloat *normals;
unsigned short int *pols;
GLfloat *smoothnormals;
};
GLuint BuildLWO(int wireframe, struct lwo *object);
#endif
/* End of buildlwo.h */